LicenseFeatureType
@objc(LSLicenseFeatureType)
enum LicenseFeatureType
extension LicenseFeatureType : Copyable, CustomStringConvertible, Equatable, Escapable, Hashable, RawRepresentable
License feature type.
-
Undocumented
Declaration
Swift
case unknown -
Undocumented
Declaration
Swift
case activation -
Undocumented
Declaration
Swift
case consumption -
A textual representation of this instance.
Calling this property directly is discouraged. Instead, convert an instance of any type to a string by using the
String(describing:)initializer. This initializer works with any type, and uses the customdescriptionproperty for types that conform toCustomStringConvertible:struct Point: CustomStringConvertible { let x: Int, y: Int var description: String { return "(\(x), \(y))" } } let p = Point(x: 21, y: 30) let s = String(describing: p) print(s) // Prints "(21, 30)"The conversion of
pto a string in the assignment tosuses thePointtype’sdescriptionproperty.Declaration
Swift
var description: String { get } -
Creates a new instance with the specified raw value.
If there is no value of the type that corresponds with the specified raw value, this initializer returns
nil. For example:enum PaperSize: String { case A4, A5, Letter, Legal } print(PaperSize(rawValue: "Legal")) // Prints "Optional(PaperSize.Legal)" print(PaperSize(rawValue: "Tabloid")) // Prints "nil"Declaration
Swift
init?(rawValue: Int)Parameters
rawValueThe raw value to use for the new instance.